home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp2.jacobs.com
/
2015.02.ftp2.jacobs.com.tar
/
ftp2.jacobs.com
/
pub
/
iPass
/
Open Mobile-V2.3.0-11624-V9.000.msi
/
Data1.cab
/
_81DB19227B4AE917432B3BADCA85FE8E
< prev
next >
Wrap
Text File
|
2012-10-24
|
760b
|
40 lines
; iPass Dial-Up Networking Script
;
; Copyright (C) 1997-2000 iPass Inc.
;
; Do not edit this script. Connection to the
; remote access points requires this script.
;
; Future auto-updates of this script will not
; occur when editions are made to this script.
;
; REV: SZ/2-03-97
;
proc main
integer nTries = 3
delay 2
while nTries > 0 do
transmit "...^M"
waitfor "SITA NETWORK" then DoLogin until 5
nTries = nTries -1
endwhile
; timed out
goto Abort
DoLogin:
delay 2
transmit "NUI 37830001^M"
waitfor "password"
delay 2
transmit "98Z8VJ^M"
waitfor "active"
delay 1
transmit "9001252001^M"
waitfor "connected"
goto Done
Abort:
; allow manual completion
set screen keyboard on
halt
Done:
endproc